Socket
Socket
Sign inDemoInstall

@poppinss/logger

Package Overview
Dependencies
Maintainers
1
Versions
10
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@poppinss/logger

Logger built on top of pino to be used by AdonisJs


Version published
Maintainers
1
Created
Source

Logger

circleci-image npm-image license-image

Extremely fast JSON logger built on top of pino. The module does handful of modifications to the config of pino and also exposes a fake logger to be used during tests.

Table of contents

Usage

Install the package from npm as follows:

npm i @poppinss/logger

# yarn
yarn add @poppinss/logger

and then use it as follows

import { Logger } from '@poppinss/logger'
const logger = new Logger({
  enabled: true,
  name: 'adonis-logger',
  level: 'debug',
})

logger.debug('received new request %s', request.url())

What's changed from Pino?

We have changed handful of config options to make things more explicit. The modifications are based on our own opinions.

Making certain fields required

All config variables are optional in pino, however, we want to make following config options required, so that the user of the logger always knows, where the values are coming from.

enabled

Making it clear, that logger can be disabled (if required).

name

Seeing logs without knowing their origin isn't really helpful. We force to define the name of the application.

level

The level at which you want to report must be decided upfront

Modifications

changeLevelName -> levelKey

Just like the messageKey, you can define the key for showing the level number inside the logs. For some reasons pino call this option changeLevelName, which sounds more like an action over a configuration. We have renamed the option to levelKey.

stream

Instead of passing the stream as the 2nd argument, you can define the custom stream within the config.

import { Logger } from '@poppinss/logger'

new Logger({
  stream: process.stdout,
})

Fake logger

Many times you would want to test whether your code is logging certain messages or not. One way is to hijack the stdout stream and read the rows text from it.

Instead, we ship with a proper FakeLogger that you can use during tests.

export class MyApp {
  constructor (logger) {
    this.logger = logger
  }

  perform () {
    this.logger.debug('created app')
  }
}

Inside your tests

import { FakeLogger } from '@poppinss/logger'
import { MyApp } from './MyApp'

const logger = new FakeLogger({
  // config
})

const app = new MyApp(logger)
app.perform()

assert.equal(logger.logs[0].msg, 'created app')
assert.equal(logger.logs[0].level, 20)

// Exists on fake logger only
logger.clear()

The fake logger works seamless with the child logger as well. The root logger will collect all the logs from nested child loggers.

API

Following are the autogenerated files via Typedoc

Maintainers

Harminder virk

Keywords

FAQs

Package last updated on 30 Aug 2019

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc